.tabs {
    border: 1px solid #ef7f4d ;
    display: flex;
  }
  
  .tabs--sidebar {
    width: 50px;
    flex-shrink: 0;
    background: #ef7f4d;
  }
  
  .tabs--button {
    display: block;
    padding: 10px;
    background: #212529;
    border: none;
    width: 100%;
    outline: none;
    cursor: pointer;
  }
  
  .tabs--button:active {
    background: black;
  }
  
  .tabs--button:not(:last-of-type){
    border-bottom: 1px solid #ef7f4d;
  }
  
  .tabs--button--active {
    font-weight: bold;
    border-right: 2px solid rgb(0, 0, 0);
    background: #fa7d17;
  }
  
  .tabs--content {
    padding: 15px;
    font-size: 0.8rem;
    display: none;
  }

  .tabs--content--active {
    display: block;
  }

.font {
    font-weight: bold;
    text-align: center;
}

.font3 {
  font-size: small;
  text-align: center;
}

.font2 {
  font-size: large;
  text-align: center;
}


* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column {
  border: none;
  float: left;
  width: 50%;
  padding: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: border none;
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

.player{
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.wrapper{
  border: 1px solid transparent;
  padding: 20px;
  border-radius: 5px;
  background-color: #ddd;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.details {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}

.track-art {
margin: 20px;
height: 200px;
width: 200px;
border:2px solid 	#FFFAFA;
background-size: cover;
background-position: center;
border-radius: 50%;
-moz-box-shadow: 0px 6px 5px black;
-webkit-box-shadow: 0px 6px 5px black;
box-shadow: 0px 6px 5px black;
-moz-border-radius:190px;
-webkit-border-radius:190px;
border-radius:190px;
}

.now-playing {
font-size: 1rem;
}

.track-name {
font-size: 2.5rem;
}

.track-artist {
margin-top: 5px;
font-size: 1.5rem;
}

.buttons {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 20px;
}
.active{
    color: black;
}

.repeat-track,
.random-track,
.playpause-track,
.prev-track,
.next-track {
padding: 20px;
opacity: 0.8;
transition: opacity .2s;
}

.repeat-track:hover,
.random-track:hover,
.playpause-track:hover,
.prev-track:hover,
.next-track:hover {
opacity: 1.0;
}

.slider_container {
display: flex;
justify-content: center;
align-items: center;
}

.seek_slider, .volume_slider {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
height: 5px;
background: #83A9FF;
-webkit-transition: .2s;
transition: opacity .2s;
}

.seek_slider::-webkit-slider-thumb,
.volume_slider::-webkit-slider-thumb {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 15px;
height: 15px;
background: white;
border: 3px solid #3774FF;
cursor: grab;
border-radius: 100%;
}

.seek_slider:hover,
.volume_slider:hover {
opacity: 1.0;
}

.seek_slider {
width: 50%;
}

.volume_slider {
width: 20%;
}

.current-time,
.total-duration {
padding: 5px;
}

i.fa-volume-down,
i.fa-volume-up {
padding: 5px;
}

i,
i.fa-play-circle,
i.fa-pause-circle,
i.fa-step-forward,
i.fa-step-backward,
p {
cursor: pointer;
}
.randomActive{
    color: black;
}
.rotate {
    animation: rotation 8s infinite linear;
}
@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
}
.loader {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .stroke{
    background: #f1f1f1;
    height: 150%;
    width: 10px;
    border-radius: 50px;
    margin: 0 5px;
    animation: animate 1.4s linear infinite;
}
  @keyframes animate {
    50% {
      height: 20%;
      background: #4286f4;
    }

    100% {
      background: #4286f4;
      height: 100%;
    }
  }
  .stroke:nth-child(1){
      animation-delay: 0s;
  }
  .stroke:nth-child(2){
    animation-delay: 0.3s;
}
.stroke:nth-child(3){
    animation-delay: 0.6s;
}
.stroke:nth-child(4){
    animation-delay: 0.9s;
}
.stroke:nth-child(5){
    animation-delay: 0.6s;
}
.stroke:nth-child(6){
    animation-delay: 0.3s;
}
.stroke:nth-child(7){
    animation-delay: 0s;
}